home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
By Popular Request 2.0
/
By Popular Request 2.0 (Arsenal Computer).ISO
/
amiga_1
/
arcalcv2.lha
/
ARcalcV2.0
/
ARexx
/
eval.rexx
next >
Wrap
OS/2 REXX Batch file
|
1995-05-13
|
243b
|
16 lines
/*
This simple script just evaluate the given expression and prints the result
or the error message
*/
address ARCALCPORT
OPTIONS RESULTS
OPTIONS FAILAT 100
PARSE ARG expression
Eval expression
if RC > 0 then
SAY ARCALC_ERROR
SAY RESULT